home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / ipacked.h < prev    next >
Text File  |  1996-07-25  |  5KB  |  125 lines

  1. /* Copyright (C) 1991, 1992, 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* ipacked.h */
  20. /* Packed array format for Ghostscript */
  21.  
  22. /*
  23.  
  24. In a packed array, an element may either be a 2-byte ref_packed or a
  25. full-size ref (8 or 16 bytes).  We carefully arrange the first two bytes,
  26. which are either an entire ref_packed or the type_attrs member of a ref,
  27. so that we can distinguish the 2 forms.  The encoding:
  28.  
  29.     00tttttt exrwsfnm    full-size ref
  30.     010mjjjj jjjjjjjj    executable operator (so bind can work)
  31.     011mvvvv vvvvvvvv    integer (biased by packed_min_intval)
  32.     100m---- --------    (not used)
  33.     101m---- --------    (not used)
  34.     110miiii iiiiiiii    literal name
  35.     111miiii iiiiiiii    executable name
  36.  
  37. The m bit is the mark bit for the garbage collector.
  38.  
  39. ****** Note for the future: We could get packed tokens into the first-level
  40. ****** interpreter dispatch by changing to the following representation:
  41.  
  42.     000ttttt exrwsfnm    full-size ref
  43.     m0100jjj jjjjjjjj    executable operator (so bind can work)
  44.     m0101vvv vvvvvvvv    integer (biased by packed_min_intval)
  45.     m011iiii iiiiiiii    literal name
  46.     m100iiii iiiiiiii    executable name
  47.     m101---- --------    (not used)
  48.     m11----- --------    (not used)
  49.  
  50. ****** We aren't going to do this for a while.
  51.  
  52. The jjj index of executable operators is either the index of the operator
  53. in the op_def_table, if the index is less than op_def_count, or the index
  54. of the definition in the op_array_table (subtracting op_def_count first).
  55.  
  56. The iii index of names is the one that the name machinery already
  57. maintains.  A name whose index is larger than will fit in the packed
  58. representation must be represented as a full-size ref.
  59.  
  60. There are two packed array types, t_mixedarray and t_shortarray.  A
  61. t_mixedarray can have a mix of packed and full-size elements; a
  62. t_shortarray has all packed elements.  The 'size' of a packed array is the
  63. number of elements, not the number of bytes it occupies.
  64.  
  65. Packed array elements can be distinguished from full-size elements, so we
  66. allow the interpreter to simply execute all the different kinds of arrays
  67. directly.  However, if we really allowed free mixing of packed and
  68. full-size elements, this could lead to unaligned placement of full-size
  69. refs; some machines can't handle unaligned accesses of this kind.  To
  70. guarantee that full-size elements in mixed arrays are always properly
  71. aligned, if a full-size ref must be aligned at an address which is 0 mod
  72. N, we convert up to N/2-1 preceding packed elements into full-size
  73. elements, when creating the array, so that the alignment is preserved.
  74. The only code this actually affects is in make_packed_array and in the
  75. code for compacting refs in the garbage collector.
  76.  
  77. Note that code in zpacked.c and interp.c knows more about the
  78. representation of packed elements than the definitions in this file would
  79. imply.  Read the code carefully if you change the representation.
  80.  
  81.  */
  82.  
  83. #define r_packed_type_shift 13
  84. #define r_packed_value_bits 12
  85. typedef enum {
  86.     pt_full_ref = 0,
  87. #define pt_min_packed 2
  88.     pt_executable_operator = 2,
  89.     pt_integer = 3,
  90.     pt_unused1 = 4,
  91.     pt_unused2 = 5,
  92. #define pt_min_name 6
  93.     pt_literal_name = 6,
  94. #define pt_min_exec_name 7
  95.     pt_executable_name = 7
  96. } packed_type;
  97. #define packed_per_ref (sizeof(ref) / sizeof(ref_packed))
  98. #define align_packed_per_ref\
  99.   (arch_align_ref_mod / arch_align_short_mod)
  100. #define pt_tag(pt) ((ref_packed)(pt) << r_packed_type_shift)
  101. #define packed_value_mask ((1 << r_packed_value_bits) - 1)
  102. #define packed_max_value packed_value_mask
  103. #define r_is_packed(rp)  (*(const ref_packed *)(rp) >= pt_tag(pt_min_packed))
  104. /* Names */
  105. #define r_packed_is_name(prp) (*(prp) >= pt_tag(pt_min_name))
  106. #define r_packed_is_exec_name(prp) (*(prp) >= pt_tag(pt_min_exec_name))
  107. #define packed_name_max_index packed_max_value
  108. #define packed_name_index(prp) (*(prp) & packed_value_mask)
  109. /* Integers */
  110. #define packed_min_intval (-(1 << (r_packed_value_bits - 1)))
  111. #define packed_max_intval ((1 << (r_packed_value_bits - 1)) - 1)
  112. #define packed_int_mask packed_value_mask
  113.  
  114. /* Packed ref marking */
  115. #define lp_mark_shift 12
  116. #define lp_mark (1 << lp_mark_shift)
  117. #define r_has_pmark(rp) (*(rp) & lp_mark)
  118. #define r_set_pmark(rp) (*(rp) |= lp_mark)
  119. #define r_clear_pmark(rp) (*(rp) &= ~lp_mark)
  120. #define r_store_pmark(rp,pm) (*(rp) = (*(rp) & ~lp_mark) | (pm))
  121.  
  122. /* Advance to the next element in a packed array. */
  123. #define packed_next(prp)\
  124.   (r_is_packed(prp) ? prp + 1 : prp + packed_per_ref)
  125.